debug

public static void debug(String message)

Logs a DEBUG message.

Parameters

message

the message to log


public static void debug(String message, Throwable exception)

Logs a DEBUG message with the given exception.

Parameters

message

the message to log

exception

the Throwable associated with the log message


public static void debug(Supplier<String> msgSupplier)

Logs a lazily constructed DEBUG message.

Parameters

msgSupplier

a function, which when called, produces the desired log message


public static void debug(String message, Array<Object> arguments)

Logs a DEBUG message with the given arguments.

Parameters

message

the message to log

arguments

the array of arguments to the message


public static void debug(String message, Supplier<String> parameterSupplier)

Logs an ERROR message with a given lazy calculated parameter.

Parameters

message

the message to log

parameterSupplier

a function, which when called, produces the desired log message parameter